home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / install.sql < prev    next >
Text File  |  2000-05-26  |  3KB  |  186 lines

  1. /* RCSVER $Id: install.sql,v 1.23 2000-05-26 09:14:47-05 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:         install.sql
  6. * Date:         03/19/1999
  7. * memo:         Randy Wood
  8. * Description:  Install all tables.
  9. * Changes:
  10. ************************************************************************* */
  11. /* ---------------------------------------- */
  12. /* Set the log file and set exit upon error */
  13. /* ---------------------------------------- */
  14. SPOOL C:\TEMP\SQLLOG1.TXT
  15. WHENEVER SQLERROR EXIT 11 ROLLBACK
  16.     /* Level 0 - No dependencies */
  17. @acctdaytotals
  18. @actual_sound
  19. @adjustment
  20. @batch
  21. @batchtotals
  22. @bitdef
  23. @bus
  24. @cashboxloc
  25. @cashboxtotals
  26. @cashclose
  27. @close_batch
  28. @closenum
  29. @close_excp
  30. @conclefx
  31. @configbuttons
  32. @configset
  33. @converr
  34. @curtypes
  35. @dayofweek
  36. @dir1list
  37. @dir2list
  38. @dlconfig
  39. @driver_context
  40. @equiptype
  41. @fare_context
  42. @fbfiles
  43. @fixedbuttons
  44. @garage
  45. @hwtypes
  46. @inplcefx
  47. @introefx
  48. @loadok
  49. @master
  50. @matchconfig
  51. @mrcconvert
  52. @mrorphans
  53. @mrpend
  54. @operator_context
  55. @probe_context
  56. @probehist
  57. @prorphans
  58. @prpend
  59. @rectypes
  60. @report_cat
  61. @reports
  62. @rptfaremap
  63. @rptheaders
  64. @rptnames
  65. @rteusage
  66. @seq_adjustments
  67. @seq_bus
  68. @seq_configsets
  69. @seq_convert
  70. @seq_fareclass
  71. @seq_garage
  72. @sound_class
  73. @subbatch
  74. @subsystems
  75. @tableversions
  76. @tmpseq
  77. @tuningtypes
  78. @users
  79. @waycodes
  80.  
  81.     /* Level 1 - Dependencies Level 0 */
  82. @alarmsg
  83. @currency
  84. @custdisp
  85. @fareclasses
  86. @faredescriptions
  87. @faresets
  88. @fbtuning
  89. @global_id
  90. @invaltok
  91. @jamclr
  92. @mrreconcile
  93. @nolog
  94. @ocucmnd
  95. @ocukeys
  96. @optypes
  97. @passwords
  98. @prompts
  99. @routes
  100. @runs
  101. @sound
  102. @status
  103. @subsecurities
  104. @tallygrp
  105. @tallys
  106. @tallytypes
  107. @tokens
  108. @trapconvert
  109. @trips
  110.  
  111.     /* Level 2 - Dependencies Level 1 */
  112. @cashbox
  113. @convert
  114. @farebox
  115. @faretable
  116. @faretimes
  117. @holidays
  118. @operations
  119. @opsecurities
  120. @sec_levels
  121. @tuningentry
  122. @tuningvals
  123. @wayfares
  124. @wayfset
  125.  
  126.     /* Level 3 - Dependencies Level 2 */
  127. @convexcp
  128. @mstrrec
  129.  
  130.     /* Level 4 - Dependencies Level 3 */
  131.     /* These are record types that depend on the mstrrec table */
  132. @alarmact
  133. @alarmclr
  134. @badcbid
  135. @bitstat
  136. @cbdoorc
  137. @cbdooro
  138. @cbdooru
  139. @cbinsert
  140. @cblatch
  141. @cbremov
  142. @cbunlatch
  143. @cmdinit
  144. @conpwrb
  145. @conpwre
  146. @cscrash
  147. @cscurcnt
  148. @cskeycnt
  149. @csposto
  150. @curacc
  151. @curstate
  152. @escapek
  153. @fareentr
  154. @fbconfig
  155. @fberror
  156. @fbpwrfal
  157. @fschng
  158. @invalsec
  159. @jcdoorc
  160. @jcdooro
  161. @probefail
  162. @probesucc
  163. @psettime
  164. @revision
  165. @rtechng
  166. @sboveroff
  167. @sboveron
  168. @settime
  169. @shftend
  170. @shftrele
  171. @shftrels
  172. @shftstrt
  173. @staket
  174. @startup
  175. @supersec
  176. @tallyuse
  177. @wayevnt
  178. @wayissue
  179. @waysvc
  180. @wayvalpass
  181. /* ------------------ */
  182. /* Close the log file */
  183. /* ------------------ */
  184. SPOOL OFF
  185. COMMIT;
  186. EXIT;